Charlie
11/21/2025, 4:12 PMVapi Support Bot
11/21/2025, 4:13 PM<break> tags) in assistant speech using only the System Prompt or n8n API calls with ElevenLabs voices. The only supported timing control is the VAPI-specific <flush /> tag, which does not create a pause but simply splits audio at natural boundaries. This is a platform limitation; custom pauses or silences are not available at this time.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for details.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/21/2025, 6:53 PMVapi Support Bot
11/21/2025, 6:54 PM<flush /> tag—not SSML <break> tags—even when using ElevenLabs voices.
For example:
"I'm processing your request... <flush /> Let me check that for you."
If you need precise pauses, SSML <break> tags are not officially documented as supported. For more, see the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax).
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Vapi Support Bot
11/21/2025, 6:56 PM<flush /> tags, add the following to your assistant's configuration:
json
{
"voice": {
"chunkPlan": {
"enabled": true
}
}
}
This is the required payload for flush tag support. Without "chunkPlan.enabled": true, flush tags will not be recognized.
See the [flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax) for more details.
Source:
- [Flush syntax documentation](https://docs.vapi.ai/assistants/flush-syntax)Charlie
11/21/2025, 7:03 PMVapi Support Bot
11/21/2025, 7:05 PM"voice.provider" field along with "chunkPlan.enabled": true. Here’s an example JSON payload for ElevenLabs:
json
{
"voice": {
"provider": "11labs",
"chunkPlan": {
"enabled": true
}
}
}
Replace "11labs" with your actual provider if different. This structure will enable <flush /> tag support and satisfy the required fields.
See the API reference for more details.
Source:
- [API reference: calls/create](https://docs.vapi.ai/api-reference/calls/create?explorer=true)Charlie
11/21/2025, 7:09 PMVapi Support Bot
11/21/2025, 7:11 PM"voice.voiceId must be a string" error, your PATCH payload must include the provider, voiceId, and chunkPlan fields. Here’s the correct JSON structure (replace "YOUR_VOICE_ID" with your actual ElevenLabs voice ID):
json
{
"voice": {
"provider": "11labs",
"voiceId": "YOUR_VOICE_ID",
"chunkPlan": {
"enabled": true
}
}
}
This will enable <flush /> tag support and satisfy all required fields according to the [API reference documentation](https://docs.vapi.ai/api-reference/assistants/update).
Source:
- [API reference: assistants/update](https://docs.vapi.ai/api-reference/assistants/update)